home *** CD-ROM | disk | FTP | other *** search
/ Sunday Savers: Singing Fun! / Sunday Savers: Singing Fun!.iso / mac / Xtras / Buddy API 1.6 / Buddy API Docs.swf / texts / 1708.txt < prev    next >
Encoding:
Text File  |  2004-08-31  |  2.0 KB  |  83 lines

  1. 188
  2. --- RECORDSEPARATOR ---
  3.  
  4. --- RECORDSEPARATOR ---
  5. ClipWindow 
  6. --- RECORDSEPARATOR ---
  7. Platform:
  8. --- RECORDSEPARATOR ---
  9.  
  10. --- RECORDSEPARATOR ---
  11. Windows
  12. --- RECORDSEPARATOR ---
  13.  
  14. --- RECORDSEPARATOR ---
  15. Description:
  16. --- RECORDSEPARATOR ---
  17.  
  18. --- RECORDSEPARATOR ---
  19. baClipWindow removes the edges from a window.
  20. --- RECORDSEPARATOR ---
  21.  
  22. --- RECORDSEPARATOR ---
  23. Usage:
  24. --- RECORDSEPARATOR ---
  25.  
  26. --- RECORDSEPARATOR ---
  27. baClipWindow( WindowHandle, Left, Top, Right, Bottom, Border, Remove )
  28. --- RECORDSEPARATOR ---
  29.  
  30. --- RECORDSEPARATOR ---
  31. Arguments:
  32. --- RECORDSEPARATOR ---
  33.  
  34. --- RECORDSEPARATOR ---
  35. Integer, integer, integer, integer, integer, integer, integer. 
  36. --- RECORDSEPARATOR ---
  37. WindowHandle is the handle of the window to change 
  38. --- RECORDSEPARATOR ---
  39. Left is the amount of the window to remove from the left edge 
  40. --- RECORDSEPARATOR ---
  41. Top is the amount of the window to remove from the top edge 
  42. --- RECORDSEPARATOR ---
  43. Right is the amount of the window to remove from the right edge 
  44. --- RECORDSEPARATOR ---
  45. Bottom is the amount of the window to remove from the bottom edge 
  46. --- RECORDSEPARATOR ---
  47. If Border is true, then the window border is removed first 
  48. --- RECORDSEPARATOR ---
  49. If Remove is true, then the window is clipped; if false then any previous clipping is 
  50. --- RECORDSEPARATOR ---
  51. removed and the window is restored to it's normal state.
  52. --- RECORDSEPARATOR ---
  53.  
  54. --- RECORDSEPARATOR ---
  55. Returns:
  56. --- RECORDSEPARATOR ---
  57.  
  58. --- RECORDSEPARATOR ---
  59. Void.
  60. --- RECORDSEPARATOR ---
  61.  
  62. --- RECORDSEPARATOR ---
  63. Examples:
  64. --- RECORDSEPARATOR ---
  65.  
  66. --- RECORDSEPARATOR ---
  67. Director: 
  68. --- RECORDSEPARATOR ---
  69. baClipWindow( 2459 , 10 , 20 , 10 , 10 , true, true ) 
  70. --- RECORDSEPARATOR ---
  71. Authorware: 
  72. --- RECORDSEPARATOR ---
  73. baClipWindow( 2459 , 10 , 20 , 10 , 10 , true, true )
  74. --- RECORDSEPARATOR ---
  75.  
  76. --- RECORDSEPARATOR ---
  77. Notes:
  78. --- RECORDSEPARATOR ---
  79.  
  80. --- RECORDSEPARATOR ---
  81. If you specify to remove the border first, then the window's menu bar and borders 
  82. --- RECORDSEPARATOR ---
  83. are removed first, then the window is clipped by the amount specified.